home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / srcbkvt.zip / LISTBOX.ZIP / ABOUT.PAS < prev    next >
Pascal/Delphi Source File  |  1995-11-30  |  583b  |  38 lines

  1. {
  2.   * Unit Name: about.pas
  3.   * Author:    William Stamatakis
  4.   * Created:   11 '95
  5.   *
  6.   * Note:      ListBox Component About Dialog (TAboutBox)
  7. }
  8.  
  9. unit About;
  10.  
  11. interface
  12.  
  13. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  14.   Buttons, ExtCtrls;
  15.  
  16. type
  17.   TAboutBox = class(TForm)
  18.     OKButton: TBitBtn;
  19.     Image2: TImage;
  20.     Label1: TLabel;
  21.     Label3: TLabel;
  22.     Bevel2: TBevel;
  23.   private
  24.     { Private declarations }
  25.   public
  26.     { Public declarations }
  27.   end;
  28.  
  29. var
  30.   AboutBox: TAboutBox;
  31.  
  32. implementation
  33.  
  34. {$R *.DFM}
  35.  
  36. end.
  37.  
  38.